home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks95 / Boom! '94.sit / Boom! '94 / HackGlue.c < prev    next >
C/C++ Source or Header  |  1995-06-24  |  214b  |  21 lines

  1. #include <SANE.h>
  2. #undef NAN
  3. #include <fp.h>
  4.  
  5.  
  6. double_t sin ( double_t x )
  7. {
  8.     extended80 temp = x;
  9.     Sin(&temp);
  10.     
  11.     return temp;
  12. }
  13.  
  14. double_t cos ( double_t x )
  15. {
  16.     extended80 temp = x;
  17.     Cos(&temp);
  18.     
  19.     return temp;
  20. }
  21.